beginobjectscript; // talking object

variables;

body;

beginstate INIT_STATE;
	break;

beginstate DEAD_STATE;
	break;

beginstate START_STATE; 
	if (gf(0,22) > get_memory_cell(0) + 1) 
		kill_object(ME,0);
	break;

beginstate USE_STATE;
	if (gf(0,22) < get_memory_cell(0) + 1) 
		print_str_color("You try to open the vat. It is sealed shut.",2);

break;
